5bd2135868bfb6f466fca5030f66fa7c82e8581d,org.eclipse.jubula.toolkit.api.gen/src/org/eclipse/jubula/toolkit/api/gen/internal/genmodel/ComponentGenInfo.java,ComponentGenInfo,findMostSpecificVisibleSuperTypeName,#Component#,158

Before Change


     * @return the name of the most specific visible super type
     */
    private String findMostSpecificVisibleSuperTypeName(Component component) {
        if (component.isVisible()) {
            return getFqInterfaceName();
        }
        // search for the most specific visible super type of the component

After Change


     * @return the name of the most specific visible super type
     */
    private String findMostSpecificVisibleSuperTypeName(Component component) {
        if (component.isVisible() || component.isAPIMostConcrete()) {
            return getFqInterfaceName();
        }
        // search for the most specific visible super type of the component